home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / program / gcc / ixemul-4.lha / ixemul-41.4 / man / Makefile next >
Makefile  |  1992-08-10  |  567b  |  19 lines

  1. #    @(#)Makefile    5.9 (Berkeley) 7/1/91
  2.  
  3. SUBDIR=    man1 man3 man4 man5 man7 man8
  4.  
  5. afterinstall:
  6.     install -c -o ${BINOWN} -g ${BINGRP} -m 444 makewhatis.sed \
  7.         ${DESTDIR}/usr/share/man/makewhatis.sed
  8.     install -c -o ${BINOWN} -g ${BINGRP} -m 444 man0/COPYRIGHT \
  9.         ${DESTDIR}/usr/share/man/COPYRIGHT
  10.  
  11. makedb:
  12.     for file in `find /usr/share/man -type f -name '*.0' -print`; do \
  13.         sed -n -f /usr/share/man/makewhatis.sed $$file; \
  14.     done | sort -u > whatis.db
  15.     install -o ${BINOWN} -g ${BINGRP} -m 444 whatis.db \
  16.         ${DESTDIR}/usr/share/man
  17.  
  18. .include <bsd.subdir.mk>
  19.